Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/099-parallax website

style.css cody/solygambas/html-css-javascript-projects/099-parallax website/style.css
154 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

* {
box-sizing: border-box;
margin: 0;
padding: 0;
color: #fff;
font-family: "Poppins", sans-serif;
index.html cody/solygambas/html-css-javascript-projects/099-parallax website/index.html
336 Views
0 Comments
<!-- Build Parallax Website With HTML CSS & Javascript by Simo Edwin - Dev Ed (2021)
see: https://www.youtube.com/watch?v=Nt70Ld0dJCM -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
script.js cody/solygambas/html-css-javascript-projects/099-parallax website/script.js
214 Views
0 Comments
let controller = new ScrollMagic.Controller();
let timeline = new TimelineMax();

timeline
.to(".rock", 10, { y: -300 })
.to(".girl", 10, { y: -200 }, "-=10")
.fromTo(".background", { y: -50 }, { y: 0, duration: 10 }, "-=10")
.to(".content", 10, { top: "0%" }, "-=10")